home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Chat & Communication / Digsby build 37 / digsby_setup.exe / lib / hashlib.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-13  |  4KB  |  128 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.5)
  3.  
  4. '''hashlib module - A common interface to many hash functions.
  5.  
  6. new(name, string=\'\') - returns a new hash object implementing the
  7.                        given hash function; initializing the hash
  8.                        using the given string data.
  9.  
  10. Named constructor functions are also available, these are much faster
  11. than using new():
  12.  
  13. md5(), sha1(), sha224(), sha256(), sha384(), and sha512()
  14.  
  15. More algorithms may be available on your platform but the above are
  16. guaranteed to exist.
  17.  
  18. Choose your hash function wisely.  Some have known collision weaknesses.
  19. sha384 and sha512 will be slow on 32 bit platforms.
  20.  
  21. Hash objects have these methods:
  22.  - update(arg): Update the hash object with the string arg. Repeated calls
  23.                 are equivalent to a single call with the concatenation of all
  24.                 the arguments.
  25.  - digest():    Return the digest of the strings passed to the update() method
  26.                 so far. This may contain non-ASCII characters, including
  27.                 NUL bytes.
  28.  - hexdigest(): Like digest() except the digest is returned as a string of
  29.                 double length, containing only hexadecimal digits.
  30.  - copy():      Return a copy (clone) of the hash object. This can be used to
  31.                 efficiently compute the digests of strings that share a common
  32.                 initial substring.
  33.  
  34. For example, to obtain the digest of the string \'Nobody inspects the
  35. spammish repetition\':
  36.  
  37.     >>> import hashlib
  38.     >>> m = hashlib.md5()
  39.     >>> m.update("Nobody inspects")
  40.     >>> m.update(" the spammish repetition")
  41.     >>> m.digest()
  42.     \'\\xbbd\\x9c\\x83\\xdd\\x1e\\xa5\\xc9\\xd9\\xde\\xc9\\xa1\\x8d\\xf0\\xff\\xe9\'
  43.  
  44. More condensed:
  45.  
  46.     >>> hashlib.sha224("Nobody inspects the spammish repetition").hexdigest()
  47.     \'a4337bc45a8fc544c03f52dc550cd6e1e87021bc896588bd79e901e2\'
  48.  
  49. '''
  50.  
  51. def __get_builtin_constructor(name):
  52.     if name in ('SHA1', 'sha1'):
  53.         import _sha as _sha
  54.         return _sha.new
  55.     elif name in ('MD5', 'md5'):
  56.         import _md5 as _md5
  57.         return _md5.new
  58.     elif name in ('SHA256', 'sha256', 'SHA224', 'sha224'):
  59.         import _sha256 as _sha256
  60.         bs = name[3:]
  61.         if bs == '256':
  62.             return _sha256.sha256
  63.         elif bs == '224':
  64.             return _sha256.sha224
  65.         
  66.     elif name in ('SHA512', 'sha512', 'SHA384', 'sha384'):
  67.         import _sha512 as _sha512
  68.         bs = name[3:]
  69.         if bs == '512':
  70.             return _sha512.sha512
  71.         elif bs == '384':
  72.             return _sha512.sha384
  73.         
  74.     
  75.     raise ValueError, 'unsupported hash type'
  76.  
  77.  
  78. def __py_new(name, string = ''):
  79.     return __get_builtin_constructor(name)(string)
  80.  
  81.  
  82. def __hash_new(name, string = ''):
  83.     
  84.     try:
  85.         return _hashlib.new(name, string)
  86.     except ValueError:
  87.         return __get_builtin_constructor(name)(string)
  88.  
  89.  
  90.  
  91. try:
  92.     import _hashlib
  93.     new = __hash_new
  94.     for opensslFuncName in filter((lambda n: n.startswith('openssl_')), dir(_hashlib)):
  95.         funcName = opensslFuncName[len('openssl_'):]
  96.         
  97.         try:
  98.             f = getattr(_hashlib, opensslFuncName)
  99.             f()
  100.             exec funcName + ' = f'
  101.         continue
  102.         except ValueError:
  103.             
  104.             try:
  105.                 exec funcName + ' = __get_builtin_constructor(funcName)'
  106.             except ValueError:
  107.                 pass
  108.             except:
  109.                 None<EXCEPTION MATCH>ValueError
  110.             
  111.  
  112.             None<EXCEPTION MATCH>ValueError
  113.         
  114.  
  115.     
  116.     del f
  117.     del opensslFuncName
  118.     del funcName
  119. except ImportError:
  120.     new = __py_new
  121.     md5 = __get_builtin_constructor('md5')
  122.     sha1 = __get_builtin_constructor('sha1')
  123.     sha224 = __get_builtin_constructor('sha224')
  124.     sha256 = __get_builtin_constructor('sha256')
  125.     sha384 = __get_builtin_constructor('sha384')
  126.     sha512 = __get_builtin_constructor('sha512')
  127.  
  128.